home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / eText5 / Source / eTFileLink.subproj / eTFileLinkUI.h < prev    next >
Encoding:
Text File  |  1994-08-05  |  1.1 KB  |  37 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //    FILENAME:    eTFileLinkUI.h 
  3. //    SUMMARY:    Interface definition for FileLink UI
  4. //    SUPERCLASS:    Object
  5. //    INTERFACE:    None
  6. //    PROTOCOLS:    <Inspectable>
  7. //    AUTHOR:        Rohit Khare
  8. //    COPYRIGHT:    (c) 1994 California Institure of Technology, eText Project
  9. ///////////////////////////////////////////////////////////////////////////////
  10. //    DESCRIPTION
  11. //        Displays (1) file/directory and allows the user to set an exec string.
  12. ///////////////////////////////////////////////////////////////////////////////
  13. //    HISTORY
  14. //    08/06/94:    Added symbolic linking support.
  15. //  07/03/94:    Created. Mimics RTFD file inclusions.
  16. ///////////////////////////////////////////////////////////////////////////////
  17.  
  18. #import "eTFileLink.h"
  19.  
  20. @interface eTFileLinkUI:eTImageUI <Inspectable>
  21. {
  22.     id    execField;
  23.     id    execSwitch;
  24.     id    filenameField;
  25.     id    filenameSwitch;
  26.     id    linkPanel;
  27.     id    linkView;
  28.     id    theLink;
  29.     id    symlinkSwitch;
  30. }
  31.  
  32. + new;
  33. - enableExec:sender;
  34. - setAnnotation:sender;
  35. - setExec:sender;
  36. - forceSymlink:sender;
  37. @end